home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1993 Michael D. Bayne.
- * All rights reserved.
- *
- * Please see the documentation accompanying the distribution for distribution and disclaimer information.
- */
-
- #define SIG_PORT ( 1 << modPort->mp_SigBit )
-
- #define BM_UNBLANKED 1
-
- #define BM_DOBLANK 11
- #define BM_DOPREFS 12
- #define BM_DOQUIT 13
-
- #define QUIT 0
- #define CONTINUE 1
-
- #define STARTUP 1
- #define IDCMP 2
- #define KILL 3
-
- struct bMessage {
- struct Message bm_Mess;
- struct Task *bm_Task;
- ULONG bm_Mod;
- ULONG bm_Dep;
- ULONG bm_Type;
- UBYTE *bm_Info;
- UBYTE *bm_Data;
- };
-